home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsweb.c < prev    next >
C/C++ Source or Header  |  2005-02-05  |  20KB  |  682 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: webhttrack.c routines                                  */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #include <stdio.h>
  38. #include <stdlib.h>
  39. #include <string.h>
  40. #include <time.h>
  41. #ifdef HAVE_SYS_TYPES_H
  42. #include <sys/types.h>
  43. #endif
  44. #ifdef HAVE_SYS_STAT_H
  45. #include <sys/stat.h>
  46. #endif
  47. #ifdef HAVE_UNISTD_H
  48. #include <unistd.h>
  49. #endif
  50. #include <ctype.h>
  51. #ifndef _WIN32
  52. #include <signal.h>
  53. #endif
  54. // htswrap_add
  55. #include "htsglobal.h"
  56. #include "htswrap.h"
  57. #include "httrack-library.h"
  58.  
  59. /* Threads */
  60. #include "htsthread.h"
  61.  
  62. /* External modules */
  63. #include "htsinthash.c"
  64. #include "htsmd5.c"
  65. #include "md5.c"
  66.  
  67. #include "htsserver.h"
  68. #include "htsweb.h"
  69.  
  70. #if USE_BEGINTHREAD==0
  71. #error fatal: no threads support
  72. #endif
  73.  
  74. #if HTS_WIN
  75. #ifndef __cplusplus
  76. // DOS
  77. #include <process.h>    /* _beginthread, _endthread */
  78. #endif
  79. #else
  80. #endif
  81.  
  82. static PTHREAD_LOCK_TYPE refreshMutex;
  83.  
  84. static int help_server(char* dest_path);
  85. extern int commandRunning;
  86. extern int commandEnd;
  87. extern int commandReturn;
  88. extern int commandEndRequested;
  89. extern char* commandReturnMsg;
  90. extern char* commandReturnCmdl;
  91.  
  92. static void htsweb_sig_brpipe( int code ) {
  93.   /* ignore */
  94. }
  95.  
  96. int main(int argc, char* argv[])
  97. {
  98.   int i;
  99.   int ret = 0;
  100.   printf("Initialzing the server..\n");
  101.  
  102. #ifdef _WIN32
  103.   {
  104.     WORD   wVersionRequested;   // requested version WinSock API
  105.     WSADATA wsadata;            // Windows Sockets API data
  106.     int stat;
  107.     wVersionRequested = 0x0101;
  108.     stat = WSAStartup( wVersionRequested, &wsadata );
  109.     if (stat != 0) {
  110.       fprintf(stderr, "Winsock not found!\n");
  111.       return -1;
  112.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  113.       fprintf(stderr, "WINSOCK.DLL does not support version 1.1\n");
  114.       WSACleanup();
  115.       return -1;
  116.     }
  117.   }
  118. #endif
  119.  
  120.   if (argc < 2 || (argc % 2) != 0) {
  121.     fprintf(stderr, "** Warning: use the webhttrack frontend if available\n");
  122.     fprintf(stderr, "usage: %s <path-to-html-root-dir> [key value [key value]..]\n", argv[0]);
  123.     fprintf(stderr, "example: %s /usr/share/httrack/\n", argv[0]);
  124.     return 1;
  125.   }
  126.  
  127.   /* init and launch */
  128.   hts_init();
  129.   htslang_init();
  130.   webhttrack_lock(-999);
  131.  
  132.   /* set general keys */
  133. #ifdef HTS_ETCPATH
  134.   smallserver_setkey("ETCPATH", HTS_ETCPATH);
  135. #endif
  136. #ifdef HTS_BINPATH
  137.   smallserver_setkey("BINPATH", HTS_BINPATH);
  138. #endif
  139. #ifdef HTS_LIBPATH
  140.   smallserver_setkey("LIBPATH", HTS_LIBPATH);
  141. #endif
  142. #ifdef HTS_PREFIX
  143.   smallserver_setkey("PREFIX", HTS_PREFIX);
  144. #endif
  145. #ifdef HTS_HTTRACKCNF
  146.   smallserver_setkey("HTTRACKCNF", HTS_HTTRACKCNF);
  147. #endif
  148. #ifdef HTS_HTTRACKDIR
  149.   smallserver_setkey("HTTRACKDIR", HTS_HTTRACKDIR);
  150. #endif
  151. #ifdef HTS_INET6
  152.   smallserver_setkey("INET6", "1");
  153. #endif
  154. #ifdef HTS_USEOPENSSL
  155.   smallserver_setkey("USEOPENSSL", "1");
  156. #endif
  157. #ifdef HTS_DLOPEN
  158.   smallserver_setkey("DLOPEN", "1");
  159. #endif
  160. #ifdef HTS_USESWF
  161.   smallserver_setkey("USESWF", "1");
  162. #endif
  163. #ifdef HTS_USEZLIB
  164.   smallserver_setkey("USEZLIB", "1");
  165. #endif
  166. #ifdef _WIN32
  167.   smallserver_setkey("WIN32", "1");
  168. #endif
  169.   smallserver_setkey("HTTRACK_VERSION", HTTRACK_VERSION);
  170.   smallserver_setkey("HTTRACK_VERSIONID", HTTRACK_VERSIONID);
  171.   smallserver_setkey("HTTRACK_AFF_VERSION", HTTRACK_AFF_VERSION);
  172.   {
  173.     char tmp[32];
  174.     sprintf(tmp, "%d", HTS_PLATFORM);
  175.     smallserver_setkey("HTS_PLATFORM", tmp);
  176.   }
  177.   smallserver_setkey("HTTRACK_WEB", HTTRACK_WEB); 
  178.  
  179.   /* protected session-id */
  180.   {
  181.     char buff[1024];
  182.     char digest[32 + 2];
  183.     srand(time(NULL));
  184.     sprintf(buff, "%d-%d", (int)time(NULL), (int)rand());
  185.     domd5mem(buff,strlen(buff),digest,1);
  186.     smallserver_setkey("sid", digest);
  187.     smallserver_setkey("_sid", digest);
  188.   }
  189.  
  190.   /* set commandline keys */
  191.   for(i = 2 ; i < argc ; i += 2) {
  192.     smallserver_setkey(argv[i], argv[i + 1]);
  193.   }
  194.  
  195.   /* sigpipe */
  196. #ifndef _WIN32
  197.   signal( SIGPIPE , htsweb_sig_brpipe );   // broken pipe (write into non-opened socket)
  198. #endif
  199.  
  200.   /* launch */
  201.   ret = help_server(argv[1]);
  202.  
  203.   htsthread_wait();
  204.   hts_uninit();
  205.  
  206. #ifdef _WIN32
  207.   WSACleanup();
  208. #endif
  209.  
  210.   return ret;
  211. }
  212.  
  213. static int webhttrack_runmain(int argc, char** argv);
  214. static PTHREAD_TYPE PTHREAD_TYPE_FNC back_launch_cmd( void* pP ) {
  215.   char* cmd = (char*) pP;
  216.   char** argv = (char**) malloct(1024 * sizeof(char*));
  217.   int argc = 0;
  218.   int i = 0;
  219.   int g = 0;
  220.  
  221.   /* copy commandline */
  222.   if (commandReturnCmdl)
  223.     free(commandReturnCmdl);
  224.   commandReturnCmdl = strdup(cmd);
  225.  
  226.   /* split */
  227.   argv[0]="webhttrack";
  228.   argv[1]=cmd;
  229.   argc++;    
  230.   i = 0;
  231.   while(cmd[i]) {
  232.     if (cmd[i] == '\t' || cmd[i] == '\r' || cmd[i] == '\n') {
  233.       cmd[i] = ' ';
  234.     }
  235.     i++;
  236.   }
  237.   i = 0;
  238.   while(cmd[i])  {
  239.     if(cmd[i]=='\"') g=!g;
  240.     if(cmd[i]==' ') {
  241.       if(!g){
  242.         cmd[i]='\0';
  243.         argv[argc++]=cmd+i+1;
  244.       }
  245.     }  
  246.     i++;
  247.   }
  248.   
  249.   /* run */
  250.   commandReturn = webhttrack_runmain(argc, argv);
  251.   if (commandReturn) {
  252.     if (commandReturnMsg)
  253.       free(commandReturnMsg);
  254.     commandReturnMsg = strdup(hts_errmsg());
  255.   }
  256.  
  257.   /* okay */
  258.   commandRunning = 0;
  259.  
  260.   /* finished */
  261.   commandEnd = 1;
  262.  
  263.   /* free */
  264.   free(cmd);
  265.   freet(argv);
  266.   return PTHREAD_RETURN;
  267. }
  268.  
  269. void webhttrack_main(char* cmd) {
  270.   commandRunning = 1;
  271.   (void)hts_newthread(back_launch_cmd, 0, (void*) strdup(cmd));
  272. }
  273.  
  274. /* Internal locking */
  275. HTSEXT_API int htsSetLock(PTHREAD_LOCK_TYPE * hMutex,int lock);
  276.  
  277. void webhttrack_lock(int lock) {
  278.   htsSetLock(&refreshMutex, lock);
  279. }
  280.  
  281. static int webhttrack_runmain(int argc, char** argv) {
  282.   hts_init();
  283.   htswrap_add("init",htsshow_init);
  284.   htswrap_add("free",htsshow_uninit);
  285.   htswrap_add("start",htsshow_start);
  286.   htswrap_add("change-options",htsshow_chopt);
  287.   htswrap_add("end",htsshow_end);
  288.   htswrap_add("preprocess-html",htsshow_preprocesshtml);
  289.   htswrap_add("check-html",htsshow_checkhtml);
  290.   htswrap_add("loop",htsshow_loop);
  291.   htswrap_add("query",htsshow_query);
  292.   htswrap_add("query2",htsshow_query2);
  293.   htswrap_add("query3",htsshow_query3);
  294.   htswrap_add("check-link",htsshow_check);
  295.   htswrap_add("pause",htsshow_pause);
  296.   htswrap_add("save-file",htsshow_filesave);
  297.   htswrap_add("link-detected",htsshow_linkdetected);
  298.   htswrap_add("link-detected2",htsshow_linkdetected2);
  299.   htswrap_add("transfer-status",htsshow_xfrstatus);
  300.   htswrap_add("save-name",htsshow_savename);
  301.   htsthread_wait_n(1);
  302.   hts_uninit();
  303.   return hts_main(argc,argv);
  304.  
  305. }
  306.  
  307. static int help_server(char* dest_path) {
  308.   int returncode = 0;
  309.   char adr_prox[HTS_URLMAXSIZE*2];
  310.   int port_prox;
  311.   T_SOC soc=smallserver_init_std(&port_prox,adr_prox);
  312.   if (soc!=INVALID_SOCKET) {
  313.     char url[HTS_URLMAXSIZE*2];
  314.     char method[32];
  315.     char data[32768];
  316.     url[0]=method[0]=data[0]='\0';
  317.     //
  318.     printf("Okay, temporary server installed.\nThe URL is:\n");
  319.     printf("URL=http://%s:%d/\n", adr_prox, port_prox);
  320. #ifndef _WIN32
  321.     {
  322.       pid_t pid = getpid();
  323.       printf("PID=%d\n", (int)pid);
  324.     }
  325. #endif
  326.     fflush(stdout);
  327.     fflush(stderr);
  328.     //
  329.     if (!smallserver(soc,url,method,data,dest_path)) {
  330.       fprintf(stderr, "Unable to create the server\n");
  331. #ifdef _WIN32
  332.       closesocket(soc);
  333. #else
  334.       close(soc);
  335. #endif
  336.       printf("Done\n");
  337.       returncode = 1;
  338.     } else {
  339.       returncode = 0;
  340.     }
  341.   } else {
  342.     fprintf(stderr, "Unable to initialize a temporary server (no remaining port)\n");
  343.     returncode = 1;
  344.   }
  345.   printf("EXITED\n");
  346.   fflush(stdout);
  347.   fflush(stderr);
  348.   return returncode;
  349. }
  350.  
  351.  
  352. /* CALLBACK FUNCTIONS */
  353.  
  354. /* Initialize the Winsock */
  355. void __cdecl htsshow_init(void) {
  356. }
  357. void __cdecl htsshow_uninit(void) {
  358. }
  359. int __cdecl htsshow_start(httrackp* opt) {
  360.   return 1; 
  361. }
  362. int __cdecl htsshow_chopt(httrackp* opt) {
  363.   return htsshow_start(opt);
  364. }
  365. int  __cdecl htsshow_end(void) { 
  366.   return 1; 
  367. }
  368. int __cdecl htsshow_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier) {
  369.   return 1;
  370. }
  371. int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  372.   return 1;
  373. }
  374. int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  375.   static TStamp prev_mytime=0; /* ok */
  376.   static t_InpInfo SInfo; /* ok */
  377.   //
  378.   TStamp mytime;
  379.   long int rate=0;
  380.   //
  381.   int stat_written=-1;
  382.   int stat_updated=-1;
  383.   int stat_errors=-1;
  384.   int stat_warnings=-1;
  385.   int stat_infos=-1;
  386.   int nbk=-1;
  387.   LLint nb=-1;
  388.   int stat_nsocket=-1;
  389.   LLint stat_bytes=-1;
  390.   LLint stat_bytes_recv=-1;
  391.   int irate=-1;
  392.   //
  393.   char st[256];
  394.  
  395.   /* Exit now */
  396.   if (commandEndRequested == 2)
  397.     return 0;
  398.  
  399.   /* Lock */
  400.   webhttrack_lock(1);
  401.  
  402.   if (stats) {
  403.     stat_written=stats->stat_files;
  404.     stat_updated=stats->stat_updated_files;
  405.     stat_errors=stats->stat_errors;
  406.     stat_warnings=stats->stat_warnings;
  407.     stat_infos=stats->stat_infos;
  408.     nbk=stats->nbk;
  409.     stat_nsocket=stats->stat_nsocket;
  410.     irate=(int)stats->rate;
  411.     nb=stats->nb;
  412.     stat_bytes=stats->nb;
  413.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  414.   }
  415.   
  416.   mytime=mtime_local();
  417.   if ((stat_time>0) && (stat_bytes_recv>0))
  418.     rate=(int)(stat_bytes_recv/stat_time);
  419.   else
  420.     rate=0;    // pas d'infos
  421.   
  422.   /* Infos */
  423.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  424.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  425.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  426.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  427.   SInfo.stat_nsocket=stat_nsocket;          // socks
  428.   if (rate>0)  SInfo.rate=rate;                // rate
  429.   if (irate>=0) SInfo.irate=irate;             // irate
  430.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  431.   if (nbk>=0) SInfo.stat_back=nbk;
  432.   if (stat_written>=0) SInfo.stat_written=stat_written;
  433.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  434.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  435.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  436.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  437.   
  438.   
  439.   st[0]='\0';
  440.   qsec2str(st,stat_time);
  441.   
  442.   /* Set keys */
  443.   smallserver_setkeyint("info.stat_bytes", SInfo.stat_bytes);
  444.   smallserver_setkeyint("info.stat_time", SInfo.stat_time);
  445.   smallserver_setkeyint("info.lien_tot", SInfo.lien_tot);
  446.   smallserver_setkeyint("info.lien_n", SInfo.lien_n);
  447.   smallserver_setkeyint("info.stat_nsocket", SInfo.stat_nsocket);
  448.   smallserver_setkeyint("info.rate", SInfo.rate);
  449.   smallserver_setkeyint("info.irate", SInfo.irate);
  450.   smallserver_setkeyint("info.stat_back", SInfo.stat_back);
  451.   smallserver_setkeyint("info.stat_written", SInfo.stat_written);
  452.   smallserver_setkeyint("info.stat_updated", SInfo.stat_updated);
  453.   smallserver_setkeyint("info.stat_errors", SInfo.stat_errors);
  454.   smallserver_setkeyint("info.stat_warnings", SInfo.stat_warnings);
  455.   smallserver_setkeyint("info.stat_infos", SInfo.stat_infos);
  456.   /* */
  457.   smallserver_setkey("info.stat_time_str", st);
  458.   
  459.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  460.     prev_mytime=mytime;
  461.     
  462.     
  463.     // parcourir registre des liens
  464.     if (back_index>=0 && back_max > 0) {  // seulement si index passΘ
  465.       int j,k;
  466.       int index=0;
  467.       int ok=0;         // idem
  468.       int l;            // idem
  469.       //
  470.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  471.       
  472.       {
  473.         int i;
  474.         for(i=0;i<NStatsBuffer;i++) {
  475.           strcpybuff(StatsBuffer[i].state,"");
  476.           strcpybuff(StatsBuffer[i].name,"");
  477.           strcpybuff(StatsBuffer[i].file,"");
  478.           strcpybuff(StatsBuffer[i].url_sav,"");
  479.           StatsBuffer[i].back=0;
  480.           StatsBuffer[i].size=0;
  481.           StatsBuffer[i].sizetot=0;
  482.         }
  483.       }
  484.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  485.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  486.           int _i;
  487.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  488.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  489.             if (back[i].status>=0) {     // signifie "lien actif"
  490.               // int ok=0;  // OPTI
  491.               ok=0;
  492.               switch(j) {
  493.               case 0:     // prioritaire
  494.                 if ((back[i].status>0) && (back[i].status<99)) {
  495.                   strcpybuff(StatsBuffer[index].state,"receive"); ok=1;
  496.                 }
  497.                 break;
  498.               case 1:
  499.                 if (back[i].status==99) {
  500.                   strcpybuff(StatsBuffer[index].state,"request"); ok=1;
  501.                 }
  502.                 else if (back[i].status==100) {
  503.                   strcpybuff(StatsBuffer[index].state,"connect"); ok=1;
  504.                 }
  505.                 else if (back[i].status==101) {
  506.                   strcpybuff(StatsBuffer[index].state,"search"); ok=1;
  507.                 }
  508.                 else if (back[i].status==1000) {    // ohh le beau ftp
  509.                   sprintf(StatsBuffer[index].state,"ftp: %s",back[i].info); ok=1;
  510.                 }
  511.                 break;
  512.               default:
  513.                 if (back[i].status==0) {  // prΩt
  514.                   if ((back[i].r.statuscode==200)) {
  515.                     strcpybuff(StatsBuffer[index].state,"ready"); ok=1;
  516.                   }
  517.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  518.                     char tempo[256]; tempo[0]='\0';
  519.                     infostatuscode(tempo,back[i].r.statuscode);
  520.                     strcpybuff(StatsBuffer[index].state,tempo); ok=1;
  521.                   }
  522.                   else {
  523.                     strcpybuff(StatsBuffer[index].state,"error"); ok=1;
  524.                   }
  525.                 }
  526.                 break;
  527.               }
  528.               
  529.               if (ok) {
  530.                 char s[HTS_URLMAXSIZE*2];
  531.                 //
  532.                 StatsBuffer[index].back=i;        // index pour + d'infos
  533.                 //
  534.                 s[0]='\0';
  535.                 strcpybuff(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  536.                 if (strcmp(back[i].url_adr,"file://"))
  537.                   strcatbuff(s,back[i].url_adr);
  538.                 else
  539.                   strcatbuff(s,"localhost");
  540.                 if (back[i].url_fil[0]!='/')
  541.                   strcatbuff(s,"/");
  542.                 strcatbuff(s,back[i].url_fil);
  543.                 
  544.                 StatsBuffer[index].file[0]='\0';
  545.                 {
  546.                   char* a=strrchr(s,'/');
  547.                   if (a) {
  548.                     strncatbuff(StatsBuffer[index].file,a,200);
  549.                     *a='\0';
  550.                   }
  551.                 }
  552.                 
  553.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  554.                   strcpybuff(StatsBuffer[index].name,s);
  555.                 else {
  556.                   // couper
  557.                   StatsBuffer[index].name[0]='\0';
  558.                   strncatbuff(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  559.                   strcatbuff(StatsBuffer[index].name,"...");
  560.                   strcatbuff(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  561.                 }
  562.                 
  563.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  564.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  565.                   StatsBuffer[index].size=back[i].r.size;
  566.                 } else {  // pas de taille prΘdΘfinie
  567.                   if (back[i].status==0) {  // prΩt
  568.                     StatsBuffer[index].sizetot=back[i].r.size;
  569.                     StatsBuffer[index].size=back[i].r.size;
  570.                   } else {
  571.                     StatsBuffer[index].sizetot=8192;
  572.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  573.                   }
  574.                 }
  575.                 index++;
  576.               }
  577.             }
  578.           }
  579.         }
  580.       }
  581.  
  582.       /* Display current job */
  583.       {
  584.         int parsing=0;
  585.         if (commandEndRequested)
  586.           smallserver_setkey("info.currentjob", "finishing pending transfers - Select [Cancel] to stop now!");
  587.         else if (!(parsing=hts_is_parsing(-1)))
  588.           smallserver_setkey("info.currentjob", "receiving files");
  589.         else {
  590.           char tmp[1024];
  591.           tmp[0] = '\0';
  592.           switch(hts_is_testing()) {
  593.           case 0:
  594.             sprintf(tmp, "parsing HTML file (%d%%)",parsing);
  595.             break;
  596.           case 1:
  597.             sprintf(tmp, "parsing HTML file: testing links (%d%%)",parsing);
  598.             break;
  599.           case 2:
  600.             sprintf(tmp, "purging files");
  601.             break;
  602.           case 3:
  603.             sprintf(tmp, "loading cache");
  604.             break;
  605.           case 4:
  606.             sprintf(tmp, "waiting (scheduler)");
  607.             break;
  608.           case 5:
  609.             sprintf(tmp, "waiting (throttle)");
  610.             break;
  611.           }
  612.           smallserver_setkey("info.currentjob", tmp);
  613.         }
  614.       }
  615.  
  616.       /* Display background jobs */
  617.       {
  618.         int i;
  619.         for(i=0;i<NStatsBuffer;i++) {
  620.           if (strnotempty(StatsBuffer[i].state)) {
  621.             smallserver_setkeyarr("info.state[", i, "]", StatsBuffer[i].state);
  622.             smallserver_setkeyarr("info.name[", i, "]", StatsBuffer[i].name);
  623.             smallserver_setkeyarr("info.file[", i, "]", StatsBuffer[i].file);
  624.             smallserver_setkeyarr("info.size[", i, "]", int2bytes(StatsBuffer[i].size));
  625.             smallserver_setkeyarr("info.sizetot[", i, "]", int2bytes(StatsBuffer[i].sizetot));
  626.             smallserver_setkeyarr("info.url_adr[", i, "]", StatsBuffer[i].url_adr);
  627.             smallserver_setkeyarr("info.url_fil[", i, "]", StatsBuffer[i].url_fil);
  628.             smallserver_setkeyarr("info.url_sav[", i, "]", StatsBuffer[i].url_sav);
  629.           }
  630.         }
  631.       }
  632.  
  633.  
  634.     }   
  635.       
  636.   }
  637.   
  638.   /* UnLock */
  639.   webhttrack_lock(0);
  640.   
  641.   return 1;
  642. }
  643. char* __cdecl htsshow_query(char* question) {
  644.   static char s[]=""; /* ok */
  645.   return s;
  646. }
  647. char* __cdecl htsshow_query2(char* question) {
  648.   static char s[]=""; /* ok */
  649.   return s;
  650. }
  651. char* __cdecl htsshow_query3(char* question) {
  652.   static char s[]=""; /* ok */
  653.   return s;
  654. }
  655. int __cdecl htsshow_check(char* adr,char* fil,int status) {
  656.   return -1;
  657. }
  658. void __cdecl htsshow_pause(char* lockfile) {
  659. }
  660. void __cdecl htsshow_filesave(char* file) {
  661. }
  662. int __cdecl htsshow_linkdetected(char* link) {
  663.   return 1;
  664. }
  665. int __cdecl htsshow_linkdetected2(char* link, char* start_tag) {
  666.   return 1;
  667. }
  668. int __cdecl htsshow_xfrstatus(lien_back* back) {
  669.   return 1;
  670. }
  671. int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  672.   return 1;
  673. }
  674. int __cdecl htsshow_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing) {
  675.   return 1;
  676. }
  677. int __cdecl htsshow_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming) {
  678.   return 1;
  679. }
  680.  
  681.  
  682.